home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / aboutDialog.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-08-23  |  3.1 KB  |  90 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: HTML -*- --> 
  2.  
  3.  
  4. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  5. <?xml-stylesheet href="chrome://editor/skin/aboutDialog.css" type="text/css"?> 
  6.  
  7. <!DOCTYPE window [
  8. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  9. %brandDTD;
  10. <!ENTITY % aboutDialogDTD SYSTEM "chrome://editor/locale/aboutDialog.dtd" >
  11. %aboutDialogDTD;
  12. ]>
  13.  
  14. <dialog xmlns:html="http://www.w3.org/1999/xhtml"
  15.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  16.         id="aboutDialog"
  17.         buttons="accept,extra2"
  18.         onload="onLoad();"
  19.         title="&aboutDialog.title;" creditslabel="&credits;" aboutlabel="&aboutLink;" versionlabel="&aboutVersion;"
  20.         style="width: 299px; height: 330px;"> 
  21.  
  22.     <script type="application/x-javascript">
  23.       <![CDATA[
  24.         function onLoad() {
  25.           var versionField = document.getElementById("versionField");
  26.           versionField.value = document.documentElement.getAttribute("versionlabel") + ' ' 
  27.                              + navigator.vendorSub + ' (' + navigator.productSub + ')';
  28.  
  29.           var button = document.documentElement.getButton("extra2");
  30.           button.setAttribute("label", document.documentElement.getAttribute("creditslabel"));
  31.           gSelectedPage = 0;
  32.           button.addEventListener("command", switchPage, false);
  33.           document.documentElement.getButton("accept").focus();
  34.         }
  35.  
  36.         function uninit(aEvent)
  37.         {
  38.           if (aEvent.target != document)
  39.             return;
  40.           var iframe = document.getElementById("creditsIframe");
  41.           iframe.setAttribute("src", "");
  42.         }
  43.  
  44.         function switchPage(aEvent)
  45.         {
  46.           var button = aEvent.target;
  47.           if (button.localName != "button")
  48.             return;
  49.  
  50.           if(aEvent.shiftKey)
  51.           {
  52.             window.opener.loadExternalURL("http://disruptive-innovations.com/book/0823.html");
  53.             return;
  54.           }
  55.  
  56.           var iframe = document.getElementById("creditsIframe");
  57.           if (gSelectedPage == 0) { 
  58.             iframe.setAttribute("src", "chrome://editor/locale/credits.html");
  59.             button.setAttribute("label", document.documentElement.getAttribute("aboutlabel"));
  60.             gSelectedPage = 1;
  61.           }
  62.           else {
  63.             iframe.setAttribute("src", ""); 
  64.             button.setAttribute("label", document.documentElement.getAttribute("creditslabel"));
  65.             gSelectedPage = 0;
  66.           }
  67.           var modes = document.getElementById("modes");
  68.           modes.setAttribute("selectedIndex", gSelectedPage);
  69.         }
  70.       ]]>
  71.     </script>
  72.  
  73.     <deck id="modes" flex="1">
  74.       <vbox flex="1" id="clientBox">
  75.       <vbox id="versionWrapper">
  76.         <textbox id="versionField" readonly="true" class="plain" tabindex="2"/>
  77.             </vbox>
  78.           <separator class="thin"/>
  79.       <description id="copyright">©rightText;</description>
  80.       </vbox>
  81.  
  82.       <vbox flex="1" id="creditsBox">
  83.         <html:iframe style="border: 0px;" id="creditsIframe" src="chrome://editor/locale/credits.html" flex="1"/>
  84.       </vbox> 
  85.     </deck>   
  86.   
  87.     <separator class="groove" id="groove"/>
  88.     
  89. </dialog>
  90.